home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000172_jaltman2@nyc.rr.com_Tue Dec 10 09:12:24 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  4KB  |  112 lines

  1. Article: 13953 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!phl-feed.news.verio.net!iad-feed.news.verio.net!iad-peer.news.verio.net!news.verio.net!newsfeed.cwix.com!newsfeed1.cidera.com!Cidera!cyclone.rdc-nyc.rr.com!news-out.nyc.rr.com!twister.nyc.rr.com.POSTED!not-for-mail
  3. Message-ID: <3DF588ED.7090104@nyc.rr.com>
  4. Disposition-Notification-To: "Jeffrey Altman [Road Runner NYC]" <jaltman2@nyc.rr.com>
  5. From: "Jeffrey Altman [Road Runner NYC]" <jaltman2@nyc.rr.com>
  6. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2.1) Gecko/20021130
  7. X-Accept-Language: en-us, en
  8. MIME-Version: 1.0
  9. Newsgroups: comp.protocols.kermit.misc
  10. Subject: Re: Interesting behavior of IKSD "set receive move-to" and "set send
  11.  move-to"
  12. References: <at3dls$4p$1@cpimail.cpicorp.com>
  13. In-Reply-To: <at3dls$4p$1@cpimail.cpicorp.com>
  14. Content-Type: text/plain; charset=us-ascii; format=flowed
  15. Content-Transfer-Encoding: 7bit
  16. Lines: 87
  17. Date: Tue, 10 Dec 2002 06:22:12 GMT
  18. NNTP-Posting-Host: 66.108.138.151
  19. X-Complaints-To: abuse@rr.com
  20. X-Trace: twister.nyc.rr.com 1039501332 66.108.138.151 (Tue, 10 Dec 2002 01:22:12 EST)
  21. NNTP-Posting-Date: Tue, 10 Dec 2002 01:22:12 EST
  22. Organization: Road Runner - NYC
  23. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13953
  24.  
  25. You will need to generate a debug.log file on the IKSD side and send it 
  26. in to kermit-support@columbia.edu for examining.
  27.  
  28. Derek Chen-Becker wrote:
  29. > Hi,
  30. >     I'm working on a transfer script in which I'd like to use the 
  31. > move-to features of send and receive on the IKSD side of the connection 
  32. > and I've noticed some very interesting behavior. I have the following 
  33. > directory structure on my IKSD server account home directory:
  34. > ~/
  35. > ~/.kermrc
  36. > ~/complete-tx
  37. > ~/complete-rx
  38. > ~/ct
  39. > ~/ct/incoming
  40. > ~/ct/outgoing
  41. > ~/ct/complete-tx
  42. > ~/ct/complete-rx
  43. > And my .kermrc contents are:
  44. > set file type binary
  45. > set file incomplete keep
  46. > set file names literal
  47. > set transfer crc on
  48. > set transfer slow-start off
  49. > set receive move-to complete-rx
  50. > set send move-to complete-tx
  51. > set file collision update
  52. > set reliable on
  53. > On the client side I do the following:
  54. > 1. Log into the server with IKSD
  55. > 2. rcd to the "ct" directory
  56. > 3. send a file: "resend test.file incoming/test.file"
  57. > 4. receive files: "reget outgoing/*"
  58. > 5. close the connection
  59. > Files that I send succesfully are moved from the ~/ct/incoming directory 
  60. > to the ~/ct/complete-rx directory, and files I receive succesfully are 
  61. > moved from ~/ct/outgoing to ~/ct/complete-tx. This is the behavior I 
  62. > expected. The two "complete" directories at the root of the home 
  63. > directory were remnants of an earlier attempt at the script, so I 
  64. > removed them. As soon as I removed those two directories, files I send 
  65. > stay in ~/ct/incoming and files I receive stay in ~/ct/outgoing. This is 
  66. > not the behavior I expected. Have I found a bug, or is something else 
  67. > going on here?
  68. > This is what the logs for files I receive look like with the 2 
  69. > directories in place:
  70. > Dec  9 18:37:36 zeus iksd[29813]: file[] /home/ktest/ct/outgoing/test1: 
  71. > rename to /home/ktest/ct/complete-tx/test1 failed (No such file or 
  72. > directory)
  73. > Dec  9 18:37:36 zeus iksd[29813]: file[2] /home/ktest/ct/outgoing/test2: 
  74. > open read ok
  75. > Dec  9 18:37:36 zeus iksd[29813]: file[] /home/ktest/ct/outgoing/test2: 
  76. > rename to /home/ktest/ct/complete-tx/test2 failed (No such file or 
  77. > directory)
  78. > Dec  9 18:37:36 zeus iksd[29813]: file[2] /home/ktest/ct/outgoing/test3: 
  79. > open read ok
  80. > Dec  9 18:37:36 zeus iksd[29813]: file[] /home/ktest/ct/outgoing/test3: 
  81. > rename to /home/ktest/ct/complete-tx/test3 failed (No such file or 
  82. > directory)
  83. > This is what the logs for files I receive look like with the 2 
  84. > directories removed:
  85. > Dec  9 18:27:19 zeus iksd[28967]: file[2] /home/ktest/ct/outgoing/test1: 
  86. > open read ok
  87. > Dec  9 18:27:19 zeus iksd[28967]: file[2] /home/ktest/ct/outgoing/test2: 
  88. > open read ok
  89. > Dec  9 18:27:19 zeus iksd[28967]: file[2] /home/ktest/ct/outgoing/test3: 
  90. > open read ok
  91. > I'm running K95 2.1.1 on the client and C-kermit 8.0.206 on the server.
  92. > Thanks,
  93. > Derek
  94.  
  95.